home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue37
/
DynArr
/
Array6.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1998-07-03
|
274 b
|
17 lines
program Array6;
uses
Forms,
Array6U in 'Array6U.pas' {Array6MainForm},
Array6U2 in 'Array6U2.pas';
{$R *.RES}
begin
{$ifdef Win32}
Application.Initialize;
{$endif}
Application.CreateForm(TArray6MainForm, Array6MainForm);
Application.Run;
end.